home *** CD-ROM | disk | FTP | other *** search
/ Over 1,000 Windows 95 Programs / Over 1000 Windows 95 Programs (Microforum) (Disc 1).iso / 1446 / smallreg.inf < prev    next >
Encoding:
Windows Setup INFormation  |  1997-02-04  |  5.3 KB  |  119 lines

  1. ; SMALLREG.INF
  2.  
  3. ; Deletes MRU (Most Recently Used) and other History lists from the registry
  4.  
  5. ; Any line begining with a ; is a comment line and is not processed
  6.  
  7. [Version]
  8. Signature="$CHICAGO$"
  9.  
  10. [DefaultInstall]
  11. DelReg=DeleteMe
  12. AddReg=AddMe
  13.  
  14. [DeleteMe]
  15.  
  16. ; Items in this section result in deletion of the ENTIRE key, along with 
  17. ; all of its subkeys and key values. 
  18. ;
  19. ; See the [AddMe] section to delete individual key values.
  20. ;
  21. ; Changes/Additions to this section must use the format:  
  22. ;
  23. ;           HKEY name,"key or subkey to delete"
  24. ;
  25. ; Valid HKEY names are:
  26. ;
  27. ;               HKCR = HKEY_CLASSES_ROOT
  28. ;               HKCU = HKEY_CURRENT_USER
  29. ;               HKLM = HKEY_LOCAL_MACHINE
  30. ;               HKU  = HKEY_USERS
  31.  
  32. HKCU,"Software\Microsoft\Cover Page Editor\Recent File List"
  33. HKCU,"Software\Microsoft\Developer\Recent File List"
  34. HKCU,"Software\Microsoft\Excel\7.0\Recent File List"
  35. HKCU,"Software\Microsoft\Excel\7.0\Recent File List"
  36. HKCU,"Software\Microsoft\Fax Viewer\Recent File List"
  37. HKCU,"Software\Microsoft\Internet Explorer\TypedURLs"
  38. HKCU,"Software\Microsoft\Windows\CurrentVersion\Applets\Paint\Recent File List"
  39. HKCU,"Software\Microsoft\Windows\CurrentVersion\Applets\WordPad\Recent File List"
  40. HKCU,"Software\Microsoft\Windows\CurrentVersion\Explorer\Doc Find Spec MRU"
  41. HKCU,"Software\Microsoft\Windows\CurrentVersion\Explorer\FindComputerMRU"
  42. HKCU,"Software\Microsoft\Windows\CurrentVersion\Explorer\PrnPortsMRU"
  43. HKCU,"Software\Microsoft\Windows\CurrentVersion\Explorer\RecentDocs"
  44. HKCU,"Software\Microsoft\Windows\CurrentVersion\Explorer\RunMRU"
  45. HKCU,"Software\Microsoft\Windows\CurrentVersion\Explorer\StreamMRU"
  46. HKCU,"Software\Microsoft\Windows\CurrentVersion\Explorer\Streams"
  47. HKCU,"Software\Netscape\Netscape Navigator\URL History"
  48. HKCU,"Software\Symantec\Internet FastFind\EasyZIP\Zip History"
  49. HKCU,"Software\Symantec\Internet FastFind\NetFileFind\Search History"
  50. HKCU,"Software\Symantec\Internet FastFind\WebFind\Search History2"
  51. HKCU,"Software\Symantec\Internet FastFind\WebFind\Search History"
  52. HKCU,"Software\Symantec\Navigator\FileAssist\History Lists"
  53. HKCU,"Software\Symantec\Navigator\FILEMGR\FMDirTree\Hist"
  54. HKCU,"Software\Symantec\Navigator\SYMFDLG4\History_Lists"
  55. HKCU,"Software\Symantec\Norton Utilities\Norton File Compare\Recent File List"
  56. HKCU,"Software\Symantec\Norton Utilities\Norton Registry Editor\Bookmark"
  57. HKCU,"InstallLocationsMRU"
  58. HKCU,"Software\BreakPoint\Hex Workshop\Recent File List"
  59. HKCU,"Software\Caere\OmniPage7.0\OmniPage Pro for Windows 95\Recent File List"
  60. HKCU,"Software\Impact\Microangelo\Animator\MRU List"
  61. HKCU,"Software\Impact\Microangelo\Engineer\MRU List"
  62. HKCU,"Software\Impact\Microangelo\Librarian\MRU List"
  63. HKCU,"Software\Impact\Microangelo\Studio\MRU List"
  64. HKCU,"Software\Inso\Quick View Plus\CurrentVersion\Find MRU"
  65. HKCU,"Software\TechSmith\SnagIt\Recent File List"
  66. HKCU,"Software\Quarterdeck\WebCompass\Recent File List"
  67.  
  68.  
  69. [AddMe]
  70.  
  71. ; Although items in this section are normally used to add items to the
  72. ; registry, there is the special ",4," entry that can be used to delete
  73. ; ONLY a specified key value of a key.
  74. ;
  75. ; See the [DeleteMe] section to delete ENTIRE keys.
  76. ;
  77. ; Changes/Additions to this section must use the format:  
  78. ;
  79. ;           HKEY name,"key or subkey to delete","key value to delete",4,
  80. ;
  81. ;   Note the trailing coma after the 4 - It is mandatory or else you will
  82. ;   get undesired results. (It will change the existing key value to "4"
  83. ;   instead of deleting it. In other words make sure the last character
  84. ;   on each line is a coma.
  85. ;
  86. ; Valid HKEY names are:
  87. ;
  88. ;               HKCR = HKEY_CLASSES_ROOT
  89. ;               HKCU = HKEY_CURRENT_USER
  90. ;               HKLM = HKEY_LOCAL_MACHINE
  91. ;               HKU  = HKEY_USERS
  92. ;
  93. ; EXAMPLES
  94. ;
  95. ; Since the Excel8 (Office97) MRUs are stored in the same key where
  96. ; other Excel8 settings are stored, deleting the entire key would not
  97. ; be appropriate. The following example shows how to remove only two of
  98. ; the many MRU key values.  Note - Excel8 uses two key values for each MRU 
  99. ; entry so two entries are needed here for each MRU to delete
  100.  
  101. HKCU,"Software\Microsoft\Office\8.0\Access\Settings","MRU1",4,
  102. HKCU,"Software\Microsoft\Office\8.0\Access\Settings","MRUFlags1",4,
  103. HKCU,"Software\Microsoft\Office\8.0\Access\Settings","MRU2",4,
  104. HKCU,"Software\Microsoft\Office\8.0\Access\Settings","MRUFlags2",4,
  105.  
  106. ; The next example shows how to remove the EventLog entries for
  107. ; Symantec's Internet FastFind. Again, it would not be appropriate to
  108. ; delete the entire key, becaue other necessary info is stored in it.
  109. ; Only one entry is required for each EventLogx you want to delete although 
  110. ; I show 5 entries, each deleting a different EventLog (in this case all 5
  111. ; that are stored).
  112.  
  113. HKCU,"Software\Symantec\Internet FastFind\Notify\Default\Powertoys","EventLog0",4,
  114. HKCU,"Software\Symantec\Internet FastFind\Notify\Default\Powertoys","EventLog1",4,
  115. HKCU,"Software\Symantec\Internet FastFind\Notify\Default\Powertoys","EventLog2",4,
  116. HKCU,"Software\Symantec\Internet FastFind\Notify\Default\Powertoys","EventLog3",4,
  117. HKCU,"Software\Symantec\Internet FastFind\Notify\Default\Powertoys","EventLog4",4,
  118.  
  119.